home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 22 / PCPP #22.iso / Quake2 / q2source_12_11 / utils3 / qe4 / z.h < prev   
Encoding:
C/C++ Source or Header  |  1997-06-05  |  383 b   |  22 lines

  1.  
  2. // window system independent camera view code
  3.  
  4. typedef struct
  5. {
  6.     int        width, height;
  7.  
  8.     qboolean    timing;
  9.  
  10.     vec3_t    origin;            // at center of window
  11.     float    scale;
  12. } z_t;
  13.  
  14. extern z_t z;
  15.  
  16. void Z_Init (void);
  17. void Z_MouseDown (int x, int y, int buttons);
  18. void Z_MouseUp (int x, int y, int buttons);
  19. void Z_MouseMoved (int x, int y, int buttons);
  20. void Z_Draw (void);
  21.  
  22.